crypto/tls.serverHandshakeState.hello (field)
26 uses
crypto/tls (current package)
handshake_server.go#L30: hello *serverHelloMsg
handshake_server.go#L128: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
handshake_server.go#L207: hs.hello = new(serverHelloMsg)
handshake_server.go#L208: hs.hello.vers = c.vers
handshake_server.go#L224: hs.hello.random = make([]byte, 32)
handshake_server.go#L225: serverRandom := hs.hello.random
handshake_server.go#L247: hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
handshake_server.go#L248: hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
handshake_server.go#L249: hs.hello.compressionMethod = compressionNone
handshake_server.go#L259: hs.hello.alpnProtocol = selectedProto
handshake_server.go#L272: hs.hello.scts = hs.cert.SignedCertificateTimestamps
handshake_server.go#L283: hs.hello.supportedPoints = []uint8{pointFormatUncompressed}
handshake_server.go#L545: hs.hello.cipherSuite = hs.suite.id
handshake_server.go#L549: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server.go#L553: hs.hello.ticketSupported = true
handshake_server.go#L559: if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
handshake_server.go#L579: hs.hello.ocspStapling = true
handshake_server.go#L582: hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
handshake_server.go#L583: hs.hello.cipherSuite = hs.suite.id
handshake_server.go#L594: if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
handshake_server.go#L604: if hs.hello.ocspStapling {
handshake_server.go#L613: skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
handshake_server.go#L711: if hs.hello.extendedMasterSecret {
handshake_server.go#L717: hs.clientHello.random, hs.hello.random)
handshake_server.go#L783: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_server.go#L840: if !hs.hello.ticketSupported {